home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / diskBoot.OpenProm / RCS / mem.c,v < prev    next >
Text File  |  1990-07-17  |  3KB  |  169 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     90.07.17.15.42.30;  author mendel;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     86.07.18.11.51.25;  author nelson;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @*** empty log message ***
  27. @
  28. text
  29. @/* 
  30.  * mem.c --
  31.  *
  32.  *    A simple (and small) memory allocator for the SCSI disk bootstrap
  33.  *    program.
  34.  *
  35.  * Copyright 1989 Regents of the University of California
  36.  * Permission to use, copy, modify, and distribute this
  37.  * software and its documentation for any purpose and without
  38.  * fee is hereby granted, provided that the above copyright
  39.  * notice appear in all copies.  The University of California
  40.  * makes no representations about the suitability of this
  41.  * software for any purpose.  It is provided "as is" without
  42.  * express or implied warranty.
  43.  */
  44.  
  45. #ifdef notdef
  46. static char rcsid[] = "$Header: /sprite/lib/forms/RCS/proto.c,v 1.2 89/01/07 04:12:18 rab Exp $ SPRITE (Berkeley)";
  47. #endif /* not lint */
  48.  
  49. #include "sprite.h"
  50.     extern int end;
  51.  
  52. static char *memEnd = (char *) &end;
  53.  
  54. /*
  55.  *----------------------------------------------------------------------
  56.  *
  57.  * malloc --
  58.  *
  59.  *     Allocate a block of memory of the given size starting at the
  60.  *     current end of kernel memory.
  61.  *
  62.  * Results:
  63.  *    A pointer to the allocated memory
  64.  *
  65.  * Side effects:
  66.  *    None.
  67.  *
  68.  *----------------------------------------------------------------------
  69.  */
  70.  
  71.  
  72.  
  73. char *
  74. malloc(numBytes)
  75. {
  76.     char    *addr;
  77.  
  78.     addr =  memEnd;
  79.  
  80.     memEnd += (numBytes + 3) & ~3;
  81.     bzero(addr, numBytes);
  82.     return(addr);
  83. }
  84.  
  85. void
  86. free(address)
  87.     char *address;
  88. {
  89.     return;
  90. }
  91. void
  92. _free(address)
  93.     char *address;
  94. {
  95.     return;
  96. }
  97.  
  98.  
  99. @
  100.  
  101.  
  102. 1.1
  103. log
  104. @Initial revision
  105. @
  106. text
  107. @d1 2
  108. a2 1
  109. /* mem.c -
  110. d4 11
  111. a14 4
  112.  *    This file contains a simple memory allocator.
  113.  *
  114.  * Copyright (C) 1985 Regents of the University of California
  115.  * All rights reserved.
  116. d17 3
  117. a19 3
  118. #ifndef lint
  119. static char rcsid[] = "$Header: bootVm.c,v 1.1 86/07/16 17:12:02 brent Exp $ SPRITE (Berkeley)";
  120. #endif not lint
  121. d22 1
  122. a22 9
  123. #include "vmSunConst.h"
  124.  
  125. extern int endBss;    /* Defined in end.s */
  126.  
  127. /*
  128.  * Private storage for Mem_Alloc
  129.  */
  130. static Address    memEnd;
  131. static Boolean    memInitialized = FALSE;
  132. d24 1
  133. d27 1
  134. a27 1
  135.  * ----------------------------------------------------------------------------
  136. d29 1
  137. a29 1
  138.  * Mem_Alloc --
  139. d35 1
  140. a35 1
  141.  *     A pointer to the allocated memory.
  142. d38 1
  143. a38 1
  144.  *     memEnd is incremented.
  145. d40 1
  146. a40 1
  147.  * ----------------------------------------------------------------------------
  148. d43 4
  149. a46 2
  150. Address
  151. Mem_Alloc(numBytes)
  152. d48 1
  153. a48 6
  154.     Address    addr;
  155.  
  156.     if (!memInitialized) {
  157.     memEnd = (Address) (((int) &endBss + 3) & ~3);
  158.     memInitialized = TRUE;
  159.     }
  160. d53 1
  161. a53 1
  162.  
  163. d58 8
  164. a65 2
  165. Mem_Free(address)
  166.     Address address;
  167. d69 2
  168. @
  169.